home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000018_fdc@columbia.edu_Fri Dec 10 12:02:44 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: DIAL Failure: "OK"
  5. Date: 10 Dec 2004 17:02:32 GMT
  6. Organization: Columbia University
  7. Lines: 38
  8. Message-ID: <slrncrjll8.5gs.fdc@sesame.cc.columbia.edu>
  9. References: <cp4cc5$gom$1@paperboy.Austria.EU.net> <1102429542.133619.87860@c13g2000cwb.googlegroups.com> <41b97165$0$17046$91cee783@newsreader01.highway.telekom.at>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1102698152 22410 128.59.59.56 (10 Dec 2004 17:02:32 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 10 Dec 2004 17:02:32 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15247
  17.  
  18. On 2004-12-10, Walter Wagner <chef@via.at> wrote:
  19. :...
  20. : In my opinion the problem is that the zyxel modem is somtimes not
  21. : answering(or answering too slow) and then it happens that the OK from a
  22. : previous command comes back while dialing. And the result is:
  23. :> > ATD56913
  24. :> >
  25. :> > OK
  26. :> > DIAL Failure: 20:50:42:  "OK"
  27. :
  28. The DIAL command takes common kinds of problems and modem misbehavior into
  29. account, so it tends to work better than simple OUTPUT/INPUT scripts,
  30. especially ones that don't check for failure and take corrective action.
  31. If you SET DIAL DISPLAY ON you can watch what happens when you give a DIAL
  32. command.  If something goes wrong, it retries the operation and/or adapts
  33. automatically in various ways.
  34.  
  35. : I tried also some other "input" commands, for example: input -1 OK\13\10
  36. : and the failure happend rarely but it was not completly solved!
  37. : And maybe the reason why my USR Modem is working perfect(also with output
  38. : commands), could be because it is an analog modem and there is no need to
  39. : set so much MSN numbers.
  40. :
  41. INPUT has a timeout, and no matter what you value you give (except -1), it
  42. might not be long enough.  If you make it too long, then it takes too long
  43. to detect an error.  If you make it too short, it reports an error when
  44. it might have succeeded.  In any given situation, use trial and error to
  45. arrive at the best value, and code your script to do what you would do
  46. if an error occurred, e.g. reissue the command and wait again (perhaps for
  47. a longer time) for the response.  You can find a lot of examples in the
  48. script library:
  49.  
  50.   http://www.columbia.edu/kermit/ckscripts.html
  51.  
  52. e.g. OUTPUT followed by a looping INPUT, in which actions are governed by
  53. the loop counter.
  54.  
  55. - Frank